home *** CD-ROM | disk | FTP | other *** search
- /*
- * SFskyedit - Star Fighter 3000 sky colours editor
- * Main application skeleton
- * Copyright (C) 2001 Chris Bazley
- */
-
- #ifndef SFSMain_h
- #define SFSMain_h
-
- #include <stdbool.h>
- #include "kernel.h"
- #include "toolbox.h"
-
- extern _kernel_oserror shared_err_block;
- extern int palette[256];
- extern void *transtable; /* flex anchor */
- extern int x_eigen;
- extern int y_eigen;
- extern int x_windlimit;
- extern int y_windlimit;
- extern int scale_factors[4];
- extern ObjectId pal256_sharedid;
- extern char taskname[32];
- extern int wimp_version;
- extern bool format_warning;
- #ifdef INT_COLOUR_FIND
- extern bool use_colour_trans;
- #endif
-
- extern int main(int argc, char *argv[]);
-
- #endif
-
-